home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / tutorial / t1 / main.cpp.z / main.cpp
Encoding:
C/C++ Source or Header  |  2002-04-08  |  426 b   |  22 lines

  1. /****************************************************************
  2. **
  3. ** Qt tutorial 1
  4. **
  5. ****************************************************************/
  6.  
  7. #include <qapplication.h>
  8. #include <qpushbutton.h>
  9.  
  10.  
  11. int main( int argc, char **argv )
  12. {
  13.     QApplication a( argc, argv );
  14.  
  15.     QPushButton hello( "Hello world!", 0 );
  16.     hello.resize( 100, 30 );
  17.  
  18.     a.setMainWidget( &hello );
  19.     hello.show();
  20.     return a.exec();
  21. }
  22.